home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / emacs / emacs1857 / bin_d2.zoo / lisp / tex-mode.el < prev    next >
Lisp/Scheme  |  1991-12-02  |  17KB  |  466 lines

  1. ;; TeX mode commands.
  2. ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc.
  3. ;; Rewritten following contributions by William F. Schelter
  4. ;; and Dick King (king@kestrel).
  5. ;; Modified August 1986 by Stephen Gildea <mit-erl!gildea> and
  6. ;; Michael Prange <mit-erl!prange> to add LaTeX support and enhance
  7. ;; TeX-region.
  8. ;; Added TeX-directory and reorganized somewhat  gildea 21 Nov 86
  9.  
  10. ;; This file is part of GNU Emacs.
  11.  
  12. ;; GNU Emacs is free software; you can redistribute it and/or modify
  13. ;; it under the terms of the GNU General Public License as published by
  14. ;; the Free Software Foundation; either version 1, or (at your option)
  15. ;; any later version.
  16.  
  17. ;; GNU Emacs is distributed in the hope that it will be useful,
  18. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. ;; GNU General Public License for more details.
  21.  
  22. ;; You should have received a copy of the GNU General Public License
  23. ;; along with GNU Emacs; see the file COPYING.  If not, write to
  24. ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  25.  
  26. ;; Still to do:
  27. ;;  Make TAB indent correctly for TeX code.  Then we can make linefeed
  28. ;;  do something more useful.
  29. ;;
  30. ;;  Have spell understand TeX instead of assuming the entire world
  31. ;;  uses nroff.
  32. ;;
  33. ;;  The code for finding matching $ needs to be fixed.
  34.  
  35. (provide 'tex-mode)
  36.  
  37. (defvar TeX-directory "/tmp/"
  38.   "*Directory in which to run TeX subjob.  Temporary files are
  39. created in this directory.")
  40. (defvar TeX-dvi-print-command "lpr -d"
  41.   "*Command string used by \\[TeX-print] to print a .dvi file.")
  42. (defvar TeX-show-queue-command "lpq"
  43.   "*Command string used by \\[TeX-show-print-queue] to show the print queue
  44. that \\[TeX-print] put your job on.")
  45. (defvar TeX-default-mode 'plain-TeX-mode
  46.   "*Mode to enter for a new file when it can't be determined whether
  47. the file is plain TeX or LaTeX or what.")
  48.  
  49. (defvar TeX-command nil
  50.   "The command to run TeX on a file.  The name of the file will be appended
  51. to this string, separated by a space.")
  52. (defvar TeX-trailer nil
  53.   "String appended after the end of a region sent to TeX by \\[TeX-region].")
  54. (defvar TeX-start-of-header nil
  55.   "String used by \\[TeX-region] to delimit the start of the file's header.")
  56. (defvar TeX-end-of-header nil
  57.   "String used by \\[TeX-region] to delimit the end of the file's header.")
  58. (defvar TeX-shell-cd-command "cd"
  59.   "Command to give to shell running TeX to change directory.  The value of
  60. TeX-directory will be appended to this, separated by a space.")
  61. (defvar TeX-zap-file nil
  62.   "Temporary file name used for text being sent as input to TeX.
  63. Should be a simple file name with no extension or directory specification.")
  64.  
  65. (defvar TeX-mode-syntax-table nil
  66.   "Syntax table used while in TeX mode.")
  67.  
  68. (defun TeX-define-common-keys (keymap)
  69.   "Define the keys that we want defined both in TeX-mode
  70. and in the TeX-shell."
  71.   (define-key keymap "\C-c\C-k" 'TeX-kill-job)
  72.   (define-key keymap "\C-c\C-l" 'TeX-recenter-output-buffer)
  73.   (define-key keymap "\C-c\C-q" 'TeX-show-print-queue)
  74.   (define-key keymap "\C-c\C-p" 'TeX-print)
  75.   )
  76.  
  77. (defvar TeX-mode-map nil "Keymap for TeX mode")
  78.  
  79. (if TeX-mode-map 
  80.     nil
  81.   (setq TeX-mode-map (make-sparse-keymap))
  82.   (TeX-define-common-keys TeX-mode-map)
  83.   (define-key TeX-mode-map "\"" 'TeX-insert-quote)
  84.   (define-key TeX-mode-map "\n" 'TeX-terminate-paragraph)
  85.   (define-key TeX-mode-map "\e}" 'up-list)
  86.   (define-key TeX-mode-map "\e{" 'TeX-insert-braces)
  87.   (define-key TeX-mode-map "\C-c\C-r" 'TeX-region)
  88.   (define-key TeX-mode-map "\C-c\C-b" 'TeX-buffer)
  89.   (define-key TeX-mode-map "\C-c\C-f" 'TeX-close-LaTeX-block)
  90.   )
  91.  
  92. (defvar TeX-shell-map nil
  93.   "Keymap for the TeX shell.  A shell-mode-map with a few additions")
  94.  
  95. ;(fset 'TeX-mode 'tex-mode)         ;in loaddefs.
  96.  
  97. ;;; This would be a lot simpler if we just used a regexp search,
  98. ;;; but then it would be too slow.
  99. (defun tex-mode ()
  100.   "Major mode for editing files of input for TeX or LaTeX.
  101. Trys to intuit whether this file is for plain TeX or LaTeX and
  102. calls plain-tex-mode or latex-mode.  If it cannot be determined
  103. \(e.g., there are no commands in the file), the value of
  104. TeX-default-mode is used."
  105.   (interactive)
  106.   (let (mode slash comment)
  107.     (save-excursion
  108.       (goto-char (point-min))
  109.       (while (and (setq slash (search-forward "\\" nil t))
  110.           (setq comment (let ((search-end (point)))
  111.                   (save-excursion
  112.                     (beginning-of-line)
  113.                     (search-forward "%" search-end t))))))
  114.       (if (and slash (not comment))
  115.       (setq mode (if (looking-at "documentstyle")
  116.              'latex-mode
  117.                'plain-tex-mode))))
  118.     (if mode (funcall mode)
  119.       (funcall TeX-default-mode))))
  120.  
  121. (fset 'plain-TeX-mode 'plain-tex-mode)
  122. (fset 'LaTeX-mode 'latex-mode)
  123.  
  124. (defun plain-tex-mode ()
  125.   "Major mode for editing files of input for plain TeX.
  126. Makes $ and } display the characters they match.
  127. Makes \" insert `` when it seems to be the beginning of a quotation,
  128. and '' when it appears to be the end; it inserts \" only after a \\.
  129.  
  130. Use \\[TeX-region] to run TeX on the current region, plus a \"header\"
  131. copied from the top of the file (containing macro definitions, etc.),
  132. running TeX under a special subshell.  \\[TeX-buffer] does the whole buffer.
  133. \\[TeX-print] prints the .dvi file made by either of these.
  134.  
  135. Use \\[validate-TeX-buffer] to check buffer for paragraphs containing
  136. mismatched $'s or braces.
  137.  
  138. Special commands:
  139. \\{TeX-mode-map}
  140.  
  141. Mode variables:
  142. TeX-directory
  143.     Directory in which to create temporary files for TeX jobs
  144.     run by \\[TeX-region] or \\[TeX-buffer].
  145. TeX-dvi-print-command
  146.     Command string used by \\[TeX-print] to print a .dvi file.
  147. TeX-show-queue-command
  148.     Command string used by \\[TeX-show-print-queue] to show the print
  149.     queue that \\[TeX-print] put your job on.
  150.  
  151. Entering plain-TeX mode calls the value of text-mode-hook,
  152. then the value of TeX-mode-hook, and then the value
  153. of plain-TeX-mode-hook."
  154.   (interactive)
  155.   (TeX-common-initialization)
  156.   (setq mode-name "TeX")
  157.   (setq major-mode 'plain-TeX-mode)
  158.   (setq TeX-command "tex")
  159.   (setq TeX-start-of-header "%**start of header")
  160.   (setq TeX-end-of-header "%**end of header")
  161.   (setq TeX-trailer "\\bye\n")
  162.   (run-hooks 'text-mode-hook 'TeX-mode-hook 'plain-TeX-mode-hook))
  163.  
  164. (defun latex-mode ()
  165.   "Major mode for editing files of input for LaTeX.
  166. Makes $ and } display the characters they match.
  167. Makes \" insert `` when it seems to be the beginning of a quotation,
  168. and '' when it appears to be the end; it inserts \" only after a \\.
  169.  
  170. Use \\[TeX-region] to run LaTeX on the current region, plus the preamble
  171. copied from the top of the file (containing \\documentstyle, etc.),
  172. running LaTeX under a special subshell.  \\[TeX-buffer] does the whole buffer.
  173. \\[TeX-print] prints the .dvi file made by either of these.
  174.  
  175. Use \\[validate-TeX-buffer] to check buffer for paragraphs containing
  176. mismatched $'s or braces.
  177.  
  178. Special commands:
  179. \\{TeX-mode-map}
  180.  
  181. Mode variables:
  182. TeX-directory
  183.     Directory in which to create temporary files for TeX jobs
  184.     run by \\[TeX-region] or \\[TeX-buffer].
  185. TeX-dvi-print-command
  186.     Command string used by \\[TeX-print] to print a .dvi file.
  187. TeX-show-queue-command
  188.     Command string used by \\[TeX-show-print-queue] to show the print
  189.     queue that \\[TeX-print] put your job on.
  190.  
  191. Entering LaTeX mode calls the value of text-mode-hook,
  192. then the value of TeX-mode-hook, and then the value
  193. of LaTeX-mode-hook."
  194.   (interactive)
  195.   (TeX-common-initialization)
  196.   (setq mode-name "LaTeX")
  197.   (setq major-mode 'LaTeX-mode)
  198.   (setq TeX-command "latex")
  199.   (setq TeX-start-of-header "\\documentstyle")
  200.   (setq TeX-end-of-header "\\begin{document}")
  201.   (setq TeX-trailer "\\end{document}\n")
  202.   (run-hooks 'text-mode-hook 'TeX-mode-hook 'LaTeX-mode-hook))
  203.  
  204. (defun TeX-common-initialization ()
  205.   (kill-all-local-variables)
  206.   (use-local-map TeX-mode-map)
  207.   (setq local-abbrev-table text-mode-abbrev-table)
  208.   (if (null TeX-mode-syntax-table)
  209.       (progn
  210.     (setq TeX-mode-syntax-table (make-syntax-table))
  211.     (set-syntax-table TeX-mode-syntax-table)
  212.     (modify-syntax-entry ?\\ ".")
  213.     (modify-syntax-entry ?\f ">")
  214.     (modify-syntax-entry ?\n ">")
  215.     (modify-syntax-entry ?$ "$$")
  216.     (modify-syntax-entry ?% "<")
  217.     (modify-syntax-entry